翻訳と辞書
Words near each other
・ Copy and paste programming
・ Copy attack
・ Copy boy
・ Copy Cats (album)
・ Copy Cats (short story collection)
・ Copy constructor (C++)
・ Copy Control
・ Copy Control Information
・ Copy Cursor
・ Copy editing
・ Copy elision
・ Copy Exactly!
・ Copy number analysis
・ Copy of a
・ Copy of Lute Player by Frans Hals
Copy propagation
・ Copy protection
・ Copy stand
・ Copy testing
・ Copy to China
・ Copy trading
・ Copy typist
・ Copy, Paste
・ Copy-evident document
・ Copy-number variation
・ Copy-on-write
・ Copyback
・ Copybook
・ Copybook (calligraphy)
・ Copybook (education)


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Copy propagation : ウィキペディア英語版
Copy propagation
In compiler theory, copy propagation is the process of replacing the occurrences of targets of direct assignments with their values. A direct assignment is an instruction of the form x = y, which simply assigns the value of y to x.
From the following code:
y = x
z = 3 + y
Copy propagation would yield:
z = 3 + x
Copy propagation often makes use of reaching definitions, use-def chains and def-use chains when computing which occurrences of the target may be safely replaced. If all upwards exposed uses of the target may be safely modified, the assignment operation may be eliminated.
Copy propagation is a useful "clean up" optimization frequently used after other optimizations have already been run. Some optimizations—such as elimination of common sub expressions〔—''require'' that copy propagation be run afterwards in order to achieve an increase in efficiency.
== See also ==

* Copy elision
* Constant folding and constant propagation

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Copy propagation」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.